#! lua
local file = io.open(arg[1],"r")
local text = file:read "*all"
file:close()
io.write(text:gsub("%b<>",""))
